:root {
  --bg: #020202;
  --panel: #090909;
  --card: #0c0c0f;
  --border: rgba(255, 255, 255, 0.08);
  --accent: #ff6b2c;
  --accent-dark: #52210e;
  --text: #f4f4f5;
  --muted: #b9b9c0;
  --container: 1480px;
  --radius: 28px;
}



 .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
}

.brand-text {
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
}

.brand-text span {
  color: #ff6a00;
}





* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(255,107,44,0.12), transparent 22%),
    linear-gradient(180deg, #000 0%, #050505 100%);
  background-color: var(--bg);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(0,0,0,0.88);
  border-bottom: 1px solid rgba(255,107,44,0.12);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.15rem;
  font-weight: 800;
}

.brand-badge {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #130701;
  background: linear-gradient(135deg, #ff7a2e, var(--accent));
  box-shadow: 0 10px 24px rgba(255,107,44,0.35);
}

.brand strong span { color: var(--accent); }

.nav-menu {
  display: flex;
  gap: 46px;
  align-items: center;
  font-weight: 600;
}

.nav-menu a { color: #d8d8dd; }
.nav-menu a:hover { color: var(--accent); }

.btn-budget {
  background: linear-gradient(135deg, #ff7a2e, var(--accent));
  color: #160b03;
  font-weight: 800;
  padding: 12px 22px;
  border-radius: 12px;
}

.page-hero {
  padding: 70px 0 36px;
  text-align: center;
}

.page-title {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.page-title .accent { color: var(--accent); }

.page-text {
  max-width: 900px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.6;
}

.packs-grid {
  padding: 42px 0 84px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pack-card {
  overflow: hidden;
  background: linear-gradient(180deg, #030303 0%, #09090b 100%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.02), 0 20px 40px rgba(0,0,0,0.28);
}

.pack-image {
  aspect-ratio: 16 / 9;
  background: #000;
  display: grid;
  place-items: center;
  padding: 26px;
}

.pack-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pack-content {
  padding: 32px;
}

.pack-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.pack-title {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 800;
}

.pack-level {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(255,107,44,0.14);
}

.pack-description {
  margin: 18px 0 22px;
  color: var(--muted);
  line-height: 1.65;
  min-height: 80px;
}

.pack-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  gap: 14px;
}

.pack-features li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #ececf0;
}

.pack-features li::before {
  content: '›';
  color: var(--accent);
  font-size: 1.4rem;
  line-height: 1;
}

.pack-button {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  border-radius: 12px;
  border: 1px solid var(--accent);
  color: #f3f3f4;
  font-weight: 800;
  transition: background 0.25s ease, transform 0.25s ease;
}

.pack-button:hover {
  background: rgba(255,107,44,0.08);
  transform: translateY(-1px);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .packs-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav { flex-wrap: wrap; padding: 14px 0; }
  .nav-menu { gap: 18px; flex-wrap: wrap; }
  .pack-content { padding: 22px; }
  .container { width: min(calc(100% - 24px), var(--container)); }
}


/* =========================
   EXTRAS / COMPLEMENTOS
========================= */

.extras-section {
  padding: 5rem 0 6rem;
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(255, 106, 0, 0.25);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff6a00;
  background: rgba(255, 106, 0, 0.08);
}

.section-title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  font-weight: 800;
  color: #ffffff;
}

.section-title .accent {
  color: #ff6a00;
}

.section-text {
  margin: 1rem auto 0;
  max-width: 760px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #c9c9d1;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
  align-items: stretch;
}

.extra-card {
  background: #0b0b0d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.extra-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 106, 0, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.extra-card-featured {
  grid-column: span 2;
}

.extra-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  padding: 2rem;
  background:
    radial-gradient(circle at top, rgba(255, 106, 0, 0.08), transparent 55%),
    linear-gradient(180deg, #121216 0%, #09090b 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.extra-image img {
  max-width: 100%;
  max-height: 210px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.35));
}

.extra-content {
  padding: 1.8rem 1.6rem 1.8rem;
}

.extra-title {
  margin: 0 0 1rem;
  font-size: 1.55rem;
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
}

.extra-title span {
  color: #ff6a00;
  font-weight: 700;
}

.extra-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.extra-list li {
  position: relative;
  margin-bottom: 0.8rem;
  padding-left: 1.2rem;
  font-size: 1.02rem;
  line-height: 1.6;
  color: #d8d8df;
}

.extra-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff6a00;
  font-weight: 800;
}

.extra-list strong {
  color: #ffe600;
  font-weight: 800;
}

.extra-price {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffe600;
}

.extra-price span {
  margin-left: 0.45rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #b8b8c2;
}

/* Responsive */
@media (max-width: 1100px) {
  .extras-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .extra-card-featured {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .extras-section {
    padding: 4rem 0 5rem;
  }

  .extras-grid {
    grid-template-columns: 1fr;
  }

  .extra-card-featured {
    grid-column: span 1;
  }

  .extra-image {
    min-height: 220px;
    padding: 1.5rem;
  }

  .extra-title {
    font-size: 1.3rem;
  }

  .section-text {
    font-size: 1rem;
  }
}

.extra-card {
  position: relative;
}

.extra-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff6a00 0%, #ff8c42 100%);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(255, 106, 0, 0.28);
}

.extra-card-new {
  border-color: rgba(255, 106, 0, 0.32);
  box-shadow: 0 20px 55px rgba(255, 106, 0, 0.08);
}



/* =========================
   HORA LOCA
========================= */

.packs-section {
  padding: 5rem 0 6rem;
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(255, 106, 0, 0.25);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff6a00;
  background: rgba(255, 106, 0, 0.08);
}

.section-title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  font-weight: 800;
  color: #ffffff;
}

.section-title .accent {
  color: #ff6a00;
}

.section-text {
  margin: 1rem auto 0;
  max-width: 760px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #c9c9d1;
}

.hora-loca-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.pack-card {
  position: relative;
  background: #0b0b0d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.pack-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 106, 0, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.pack-card-new {
  border-color: rgba(255, 106, 0, 0.32);
  box-shadow: 0 20px 55px rgba(255, 106, 0, 0.08);
}

.pack-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff6a00 0%, #ff8c42 100%);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(255, 106, 0, 0.28);
}

.pack-image {
  background: #111114;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pack-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.pack-content {
  padding: 1.8rem 1.6rem 1.8rem;
}

.pack-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.pack-title {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
}

.pack-level {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.14);
  color: #ff6a00;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}

.pack-description {
  margin: 0 0 1.2rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #d8d8df;
}

.pack-features {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pack-features li {
  position: relative;
  margin-bottom: 0.8rem;
  padding-left: 1.2rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #d8d8df;
}

.pack-features li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff6a00;
  font-weight: 800;
}

.pack-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.3rem;
  padding: 0.9rem 1.35rem;
  border-radius: 14px;
  background: #ff6a00;
  color: #111;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 24px rgba(255, 106, 0, 0.22);
}

.pack-btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

@media (max-width: 1100px) {
  .hora-loca-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .packs-section {
    padding: 4rem 0 5rem;
  }

  .hora-loca-grid {
    grid-template-columns: 1fr;
  }

  .pack-image img {
    height: 230px;
  }

  .pack-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .pack-title {
    font-size: 1.35rem;
  }

  .section-text {
    font-size: 1rem;
  }
}